home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / probe_context.sql < prev    next >
Text File  |  2000-05-12  |  772b  |  21 lines

  1. /* RCSVER $Id: probe_context.sql,v 1.1 1999-06-03 13:14:46-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        probe_context.sql
  6. * Date:        05/31/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the probe_context table. This table contains
  9. *               data associated with a probe.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE probe_context
  13. (
  14.     probe_context_id    NUMBER(38),
  15.     garage_glid        NUMBER(38),
  16.     probe_seq           NUMBER(38),    
  17.     conversion_num      NUMBER(38),    /* references convert */
  18.     probe_date        DATE,
  19.         CONSTRAINT pk_probe_context PRIMARY KEY (probe_context_id)
  20. );
  21.